home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Beep On Errors 1.xpl < prev    next >
Text File  |  2002-04-27  |  1KB  |  44 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="System\Advanced System Settings"
  5. "NAME"="Beep on errors"
  6. "VERSION"="1.03"
  7. "OSVERSION"="0001011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Enable "Beep" noise on errors"
  10. "DESCRIPTION 1"="If "Enable Beep Noise" is enabled, Windows is able to make a beeping noise when there is a program error or similar. If deactivated, it won't beep."
  11. "DESCRIPTION 2"="NOTE #1: This sound is using the PC Speaker inside your computer and not using your sound card and speakers!"
  12. "DESCRIPTION 3"="NOTE #2: If you are using Windows 2000, it can happen that disabling this option will also disable the Startup or Shutdown sounds of Windows itself. This seems to be a bug in Windows."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Description tweaked by Neil R. Turner"
  17. "COMMENT 2"="W2K Startup sound hint by Mark Christian [mark.christian@bigfoot.com]"
  18.  
  19.  
  20.  
  21. sV1="HKEY_CURRENT_USER\Control Panel\Sound\Beep"
  22.  
  23. Sub Plugin_Initialize 
  24.     s=RegReadValue(sV1)
  25.     if UCase(s)="YES" then
  26.        Call SetUIElement(1,true)
  27.     end if
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  b=GetUIElement(1)
  32.  if b=true then
  33.     Call RegWriteValue(sV1,"Yes",1)
  34.  else
  35.     Call RegWriteValue(sV1,"No",1)
  36.  end if
  37.  
  38.  
  39.  Call Restart
  40. End Sub
  41.  
  42. Sub Plugin_Terminate 
  43. End Sub
  44.